home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
graphicsUndo.subproj
/
LineCapGraphicsChange.m
< prev
next >
Wrap
Text File
|
1992-02-09
|
538b
|
32 lines
#import "drawundo.h"
@interface LineCapGraphicsChange(PrivateMethods)
@end
@implementation LineCapGraphicsChange
- initGraphicView:aGraphicView lineCap:(int)aCapValue
{
[super initGraphicView:aGraphicView];
capValue = aCapValue;
return self;
}
- (const char *)changeName
{
return NXLocalStringFromTable("Operations", "Line Cap", NULL, "The operation of changing the roundedness of the end of a line.");
}
- changeDetailClass
{
return [LineCapChangeDetail class];
}
- (int)lineCap
{
return capValue;
}
@end